home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gp_ntfs.c < prev    next >
C/C++ Source or Header  |  1996-09-05  |  6KB  |  193 lines

  1. /* Copyright (C) 1992, 1993, 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_ntfs.c */
  20. /* file system stuff for MS-Windows WIN32 and MS-Windows NT*/
  21. /* hacked from gp_dosfs.c by Russell Lang */
  22.  
  23. #include "stdio_.h"
  24. #include <fcntl.h>
  25. #include "dos_.h"
  26. #include "memory_.h"
  27. #include "string_.h"
  28. #include "gstypes.h"
  29. #include "gsmemory.h"
  30. #include "gsstruct.h"
  31. #include "gp.h"
  32. #include "gsutil.h"
  33. #include "windows_.h"
  34.  
  35. /* ------ Printer accessing ------ */
  36.  
  37. /* Put a printer file (which might be stdout) into binary or text mode. */
  38. /* This is not a standard gp procedure, */
  39. /* but all MS-DOS configurations need it. */
  40. void
  41. gp_set_printer_binary(int prnfno, int binary)
  42. {
  43.     /* UNIMPLEMENTED */
  44. }
  45.  
  46. /* ------ File names ------ */
  47.  
  48. /* Define the character used for separating file names in a list. */
  49. const char gp_file_name_list_separator = ';';
  50.  
  51. /* Define the string to be concatenated with the file mode */
  52. /* for opening files without end-of-line conversion. */
  53. const char gp_fmode_binary_suffix[] = "b";
  54. /* Define the file modes for binary reading or writing. */
  55. const char gp_fmode_rb[] = "rb";
  56. const char gp_fmode_wb[] = "wb";
  57.  
  58. /* Answer whether a file name contains a directory/device specification, */
  59. /* i.e. is absolute (not directory- or device-relative). */
  60. bool
  61. gp_file_name_is_absolute(const char *fname, uint len)
  62. {    /* A file name is absolute if it contains a drive specification */
  63.     /* (second character is a :) or if it start with 0 or more .s */
  64.     /* followed by a / or \. */
  65.     if ( len >= 2 && fname[1] == ':' )
  66.       return true;
  67.     while ( len && *fname == '.' )
  68.       ++fname, --len;
  69.     return (len && (*fname == '/' || *fname == '\\'));
  70. }
  71.  
  72. /* Answer the string to be used for combining a directory/device prefix */
  73. /* with a base file name.  The file name is known to not be absolute. */
  74. const char *
  75. gp_file_name_concat_string(const char *prefix, uint plen,
  76.   const char *fname, uint len)
  77. {    if ( plen > 0 )
  78.       switch ( prefix[plen - 1] )
  79.        {    case ':': case '/': case '\\': return "";
  80.        };
  81.     return "\\";
  82. }
  83.  
  84. /* ------ File enumeration ------ */
  85.  
  86. struct file_enum_s {
  87.     WIN32_FIND_DATA find_data;
  88.     HANDLE find_handle;
  89.     char *pattern;            /* orig pattern + modified pattern */
  90.     int patlen;            /* orig pattern length */
  91.     int pat_size;            /* allocate space for pattern */
  92.     int head_size;            /* pattern length through last */
  93.                     /* :, / or \ */
  94.     int first_time;
  95.     gs_memory_t *memory;
  96. };
  97. gs_private_st_ptrs1(st_file_enum, struct file_enum_s, "file_enum",
  98.   file_enum_enum_ptrs, file_enum_reloc_ptrs, pattern);
  99.  
  100. /* Initialize an enumeration.  Note that * and ? in a directory */
  101. /* don't work, and \ is taken literally unless a second \ follows. */
  102. file_enum *
  103. gp_enumerate_files_init(const char *pat, uint patlen, gs_memory_t *mem)
  104. {    file_enum *pfen = gs_alloc_struct(mem, file_enum, &st_file_enum, "gp_enumerate_files");
  105.     int pat_size = 2 * patlen + 1;
  106.     char *pattern;
  107.     int hsize = 0;
  108.     int i;
  109.     if ( pfen == 0 ) return 0;
  110.  
  111.     /* pattern could be allocated as a string, */
  112.     /* but it's simpler for GC and freeing to allocate it as bytes. */
  113.  
  114.     pattern = (char *)gs_alloc_bytes(mem, pat_size,
  115.                      "gp_enumerate_files(pattern)");
  116.     if ( pattern == 0 ) return 0;
  117.     memcpy(pattern, pat, patlen);
  118.     /* find directory name = header */
  119.     for ( i = 0; i < patlen; i++ )
  120.     {    switch ( pat[i] )
  121.         {
  122.         case '\\':
  123.             if ( i + 1 < patlen && pat[i + 1] == '\\' )
  124.                 i++;
  125.             /* falls through */
  126.         case ':':
  127.         case '/':
  128.             hsize = i + 1;
  129.         }
  130.     }
  131.     pattern[patlen] = 0;
  132.     pfen->pattern = pattern;
  133.     pfen->patlen = patlen;
  134.     pfen->pat_size = pat_size;
  135.     pfen->head_size = hsize;
  136.     pfen->memory = mem;
  137.     pfen->first_time = 1;
  138.     memset(&pfen->find_data, 0, sizeof(pfen->find_data));
  139.     pfen->find_handle = INVALID_HANDLE_VALUE;
  140.     return pfen;
  141. }
  142.  
  143. /* Enumerate the next file. */
  144. uint
  145. gp_enumerate_files_next(file_enum *pfen, char *ptr, uint maxlen)
  146. {    int code = 0;
  147.     uint len;
  148. top:    if ( pfen->first_time )
  149.        {
  150.         pfen->find_handle = FindFirstFile(pfen->pattern, &(pfen->find_data));
  151.         if (pfen->find_handle == INVALID_HANDLE_VALUE)
  152.             code = -1;
  153.             pfen->first_time = 0;
  154.        }
  155.     else
  156.        {
  157.         if (!FindNextFile(pfen->find_handle, &(pfen->find_data)))
  158.             code = -1;
  159.        }
  160.     if ( code != 0 )
  161.        {    /* All done, clean up. */
  162.         gp_enumerate_files_close(pfen);
  163.         return ~(uint)0;
  164.        }
  165.  
  166.     len = strlen(pfen->find_data.cFileName);
  167.  
  168.     if (pfen->head_size + len < maxlen) {
  169.         memcpy(ptr, pfen->pattern, pfen->head_size);
  170.         strcpy(ptr + pfen->head_size, pfen->find_data.cFileName);
  171.         return pfen->head_size + len;
  172.     }
  173.  
  174.     if (pfen->head_size >= maxlen)
  175.         return 0;    /* no hope at all */
  176.  
  177.     memcpy(ptr, pfen->pattern, pfen->head_size);
  178.     strncpy(ptr + pfen->head_size, pfen->find_data.cFileName, 
  179.         maxlen - pfen->head_size - 1);
  180.     return maxlen;
  181. }
  182.  
  183. /* Clean up the file enumeration. */
  184. void
  185. gp_enumerate_files_close(file_enum *pfen)
  186. {    gs_memory_t *mem = pfen->memory;
  187.     if (pfen->find_handle != INVALID_HANDLE_VALUE)
  188.         FindClose(pfen->find_handle);
  189.     gs_free_object(mem, pfen->pattern,
  190.                "gp_enumerate_files_close(pattern)");
  191.     gs_free_object(mem, pfen, "gp_enumerate_files_close");
  192. }
  193.